.privacy-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Título principal */
.privacy-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

/* Subtítulos */
.privacy-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.privacy-section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #90cdf4;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Parágrafos */
.privacy-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Links */
.privacy-section a {
  color: #2563eb;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .privacy-section h1 {
    font-size: 1.6rem;
  }

  .privacy-section h2 {
    font-size: 1.1rem;
  }

  .privacy-section p {
    font-size: 0.95rem;
  }
}
